Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | $( function() { |
||
17 | function ajaxCall() { |
||
18 | if ( ajaxRequestStatus === true ) { |
||
19 | return; |
||
20 | } |
||
21 | |||
22 | ajaxRequestStatus = true; |
||
23 | |||
24 | $.get( "/api" + window.location.pathname, function( data ) { |
||
25 | $.plot( "#chart", data, options ); |
||
26 | } ).always( function() { |
||
27 | ajaxRequestStatus = false; |
||
28 | } ); |
||
29 | } |
||
30 | |||
36 |